Gerd Gigerenzer is the Director at the Max Planck Institute for Human Development1 book “Calculated Risks”2 paper on innumeracy3
Natural frequencies instead of probabilities
confusion matrix created into a flow chart give
library(DiagrammeR)
grViz("
digraph DAG {
# Intialization of graph attributes
graph [overlap = true]
# Initialization of node attributes
node [shape = box,
fontname = Helvetica,
color = blue,
type = box,
fixedsize = false]
# Initialization of edge attributes
edge [color = green,
rel = yields]
# Node statements
'Starting Number'; 'Have Disease'; 'Dont Have Disease';
# Edge statements
'Starting Number'->'Have Disease';'Starting Number'-> 'Dont Have Disease';
}
")